extensions: Fix M/Y channels swapped for CMYK float
authorJon Nordby <jononor@gmail.com>
Mon, 11 Aug 2014 23:45:13 +0000 (01:45 +0200)
committerJon Nordby <jononor@gmail.com>
Mon, 11 Aug 2014 23:45:13 +0000 (01:45 +0200)
Pretty sure CMYK should have channel order cmyk and not cymk

extensions/naive-CMYK.c

index 62669dc16835c4d515582632f1a9d00f08b26811..0da6ef7838a9f95f702fa8952cc2c8e1ad29856d 100644 (file)
@@ -96,8 +96,8 @@ init (void)
     babl_model ("CMYK"),
     babl_type ("float"),
     babl_component ("cyan"),
-    babl_component ("yellow"),
     babl_component ("magenta"),
+    babl_component ("yellow"),
     babl_component ("key"),
     NULL
   );
@@ -106,8 +106,8 @@ init (void)
     babl_model ("CMY"),
     babl_type ("float"),
     babl_component ("cyan"),
-    babl_component ("yellow"),
     babl_component ("magenta"),
+    babl_component ("yellow"),
     NULL
   );